home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / cracking software / pgp cracker.zip / Makefile < prev    next >
Makefile  |  1996-04-27  |  657b  |  28 lines

  1. CC = cc
  2. OBJS = pgpcrack.o idea.o md5.o #memmove.o
  3. # Uncomment "memmove.o" if you are using SunOS or if the platform you are using
  4. # does not support memmove()
  5.  
  6. LDFLAGS = -s
  7. CFLAGS = -O2 -DIDEA32 #-DHIGHFIRST
  8. # Uncomment "-DHIGHFIRST" if you are compiling this for a big-endian machine
  9. # Delete -DIDEA32 if you find that this is faster without it
  10.  
  11. pgpcrack: $(OBJS)
  12.     $(CC) $(LDFLAGS) -o pgpcrack $(OBJS)
  13.  
  14. pgpcrack.o: pgpcrack.c
  15.     $(CC) $(CFLAGS) -c pgpcrack.c
  16.  
  17. idea.o: idea.c
  18.     $(CC) $(CFLAGS) -c idea.c
  19.  
  20. md5.o: md5.c
  21.     $(CC) $(CFLAGS) -c md5.c    
  22.  
  23. memmove.o: memmove.c
  24.     $(CC) $(CFLAGS) -c memmove.c
  25.  
  26. clean:
  27.     rm -f *.o *~ pgpcrack core
  28.